• Extract Transform Load (ETL) Tools Comparison - SQL Server Integration Services vs Oracle ODI

    Updated: 2022-12-30 05:00:00
    In this article, we look at a comparison of how to perform ETL tasks in an Oracle environment using ODI versus a SQL Server environment using SSIS.

  • Python Exception Handling using Try, Except, Else and Finally

    Updated: 2022-12-29 05:00:00
    Learn about exception handling in Python and how to catch and address various issues using try, except, else, and finally.

  • Useful Commands for Snowflake Transactions

    Updated: 2022-12-28 05:00:00
    In this article, we look at how to create transactions when using Snowflake along with several commands specific to working with transactions.

  • How to Create a Box and Whisker Plot in Power BI Desktop

    Updated: 2022-12-27 05:00:00
    In this article, we look at how to build a box and whisker plot chart using Power BI Desktop with a step-by-step walkthrough.

  • Database Sharding to help Improve Performance and Maintenance Tasks

    Updated: 2022-12-26 05:00:00
    In this article, we will review the benefits and drawbacks of using database partitioning (sharding) to help improve performance and maintenance tasks.

  • Bucket Sort Algorithm in Python to Sort a List of Array Values

    Updated: 2022-12-23 05:00:00
    Learn about how to implement a simple bucket sort algorithm using Python code to sort a list of array values.

  • Power BI Interview Questions and FAQs

    Updated: 2022-12-22 05:00:00
    This article provides some questions you may be asked and areas of discussion for an interview related to Power BI jobs.

  • Working with Spark files and Hive tables

    Updated: 2022-12-22 05:00:00
    The Spark engine supports several different file formats and in this article, we look at the pros and cons of each file type and which might be best to use.

  • The Basics of SQL Server Variables

    Updated: 2022-12-21 05:00:00
    In this article, we look at the basics of using SQL Server variables in T-SQL code to allow for more dynamic code creation.

  • Import Data from an Excel file into a SQL Server Database using Python

    Updated: 2022-12-21 05:00:00
    Learn how to import data from an Excel file into a SQL Server database using Python.

  • Replicate Data to Azure Synapse Analytics with Azure Synapse Link for SQL

    Updated: 2022-12-20 05:00:00
    Learn about Azure Synapse Link to replicate one or more tables from Azure SQL Database or SQL Server 2022 to a dedicated SQL Pool in an Azure Synapse Analytics workspace.

  • SQL Server 2022: How Auto-Drop Statistics Work

    Updated: 2022-12-19 17:00:57
    Auto-Create statistics is a well-known feature critical for the database performance. When one statistic is auto created, changing the table structure is not blocked by the presence of the statistic. An auto-created statistics is also dropped automatically when a schema change happens. On the other hand, if the statistic is created by the user, any … The post SQL Server 2022: How Auto-Drop Statistics Work appeared first on Simple Talk.

  • How to Create a Star Schema in Power BI Desktop

    Updated: 2022-12-19 05:00:00
    Learn how to build a star schema data model using Power BI Desktop for improved report development and performance.

  • Enable Auditing for Azure SQL Managed Instance

    Updated: 2022-12-19 05:00:00
    In this article, we look at how to enable auditing for an Azure SQL Managed Instance.

  • CREATE OR ALTER statement in SQL Server

    Updated: 2022-12-19 05:00:00
    Learn how to use the CREATE OR ALTER statement in SQL Server to create an object if it does not already exist or alter an object if it does exist.

  • How to identify blocking in SQL Server

    Updated: 2022-12-19 05:00:00
    Learn about the different ways to capture and identify blocking that is occurring in SQL Server.

  • SQL Server point in time recovery

    Updated: 2022-12-19 05:00:00
    In this article, we look at how to do a point in time restore using TSQL and SSMS to recover a database to a particular point in time.

  • Comparing PARSEONLY and NOEXEC options in SQL Server

    Updated: 2022-12-16 05:00:00
    In this article, we look at different ways to check query syntax by using PARSEONLY, NOEXEC as well as executing the code to see how SQL Server handles each of these.

  • Building a SQL Computational Framework for MACD Indicators

    Updated: 2022-12-15 05:00:00
    This article looks at how to calculate MACD indicators using a set of T-SQL code and data stored in a SQL Server database.

  • Creating an Entity Relationship Diagram (ERD) for Database Applications

    Updated: 2022-12-15 05:00:00
    In this article, we look at various aspects of an ERD (entity relationship diagram) and how to put together an ERD for your database applications.

  • The Importance of a Good Data Model in Power BI Desktop

    Updated: 2022-12-14 05:00:00
    This tip will go through some guidelines for creating an optimized data model when working with Power BI for performance and accurate results.

  • Secure File Transfer Protocol (SFTP) support for Azure Blob Storage

    Updated: 2022-12-14 05:00:00
    In this article, we walk through the steps and examples of how to use Secure File Transfer Protocol (SFTP) when working in Azure.

  • Unicode: Code Points in SQL or PL/SQL

    Updated: 2022-12-14 03:16:28
    A new topic has been added to the Unicode section on SQL Snippets. "Code Points in SQL or PL/SQL" examines various techniques for determining a character's Unicode code point. One technique involves creating a custom PL/SQL function called UNICODEPOINT(). When compared to other techniques UNICODEPOINT() proves to be faster, leaner, and more scalable. It also works on more Oracle versions than the other techniques....

  • SQL Features Tutorials: Unicode

    Updated: 2022-12-14 03:16:27
    A new section on Unicode has been added to SQL Snippets. Topics covered include a practical overview of Unicode Unicode support in Oracle working with Unicode data in UNIX and Windows XP operating systems viewing Unicode data in Excel 2007, Firefox, Internet Explorer, Notepad, PuTTY, SQL Developer, and SQL*Plus transferring Unicode data with WinSCP and ftp....

  • Joe's Blog: 15 Mintues of Fame

    Updated: 2022-12-14 03:16:27
    : SQL Snippets Tutorials for Oracle Developers Custom Search Home A0 A0 SQL Features A0 A0 SQL Techniques A0 A0 Miscellany A0 A0 About A0 A0 Blog A0 A0 Site Map A0 A0 Search A0 A0 Home Blog A0 15 Minutes of Fame A0 Happy First Anniversary SQL Snippets A0 And Now for Something Completely Different A0 Google Street View A0 Getting IT Right A0 The Task Spiral A0 The Choice A0 It's Alive A0 Snippets in the Strangest Places A0 The Journey Begins A0 About the Author A0 Next A0 Read Using SQL Snippets before using any of this site's sample code or techniques on your own . systems Joe's Blog 15 Mintues of Fame 2009-07-25 They say everyone gets at least 15 minutes of fame in their lifetime . Here's my total to-date . 1 minute Middle School my picture and some artwork appeared in The Toronto Star

  • SQL Features Tutorials: Grouping Rows with GROUP BY

    Updated: 2022-12-14 03:16:27
    A new tutorial has been added to SQL Snippets exploring the GROUP BY clause and related extensions such as GROUPING SETS, ROLLUP, and CUBE. Group related functions such as GROUP_ID, GROUPING, and GROUPING_ID are also covered....

  • Columns to String: Comma Separated Values (CSV)

    Updated: 2022-12-14 03:16:27
    The "Columns to String: Comma Separated Values (CSV)" tutorial now includes three new sections, "How to Create a CSV File", "How to Escape Double Quotes, CR, and LF", and "How to Include a Header Line"....

  • SQL Features Tutorials: Materialized Views

    Updated: 2022-12-14 03:16:26
    Originally introduced in 1992 as "Snapshots" in Oracle 7, Materialized Views are now used in ways far removed from their original raison d'être, replication. Database programmers use them for data warehousing, denormalization, and even validation. Despite their versatility though, materialized views remain a mystery to some programmers due to their complexity. The new SQL Snippets tutorial "Materialized Views" strips away the mystery with its simple test cases, step-by-step exploration of the basics, common programming pitfall alerts, and a useful utility called MY_MV_CAPABILITIES which analyzes and reports a materialized view's capabilities in a single step....

  • Regular Expressions: REGEXP_COUNT

    Updated: 2022-12-14 03:16:26
    Introduced in Oracle 11g the REGEXP_COUNT function greatly simplifies counting the number of times a pattern appears inside a string. The following examples demonstrate how to use REGEXP_COUNT with some simple patterns. For versions prior to 11g alternative logic that provides similar functionality is also presented....

  • SQL Techniques Tutorials: Rows to Columns

    Updated: 2022-12-14 03:16:26
    The SQL Snippets "Rows to Columns" tutorial has been updated to include solutions that use the new 11g PIVOT clause of the SELECT command....

  • Nulls: Nulls and Equality

    Updated: 2022-12-14 03:16:25
    The SQL Snippets "Nulls and Equality" tutorial has been updated with new solutions and a discussion about the undocumented SYS_OP_MAP_NONNULL function....

  • Joe's Blog: Happy First Anniversary SQL Snippets!

    Updated: 2022-12-14 03:16:25
    : SQL Snippets Tutorials for Oracle Developers Custom Search Home A0 A0 SQL Features A0 A0 SQL Techniques A0 A0 Miscellany A0 A0 About A0 A0 Blog A0 A0 Site Map A0 A0 Search A0 A0 Home Blog A0 15 Minutes of Fame A0 Happy First Anniversary SQL Snippets A0 And Now for Something Completely Different A0 Google Street View A0 Getting IT Right A0 The Task Spiral A0 The Choice A0 It's Alive A0 Snippets in the Strangest Places A0 The Journey Begins A0 About the Author A0 Next A0 Read Using SQL Snippets before using any of this site's sample code or techniques on your own . systems Joe's Blog Happy First Anniversary SQL Snippets 2007-11-18 Well , it's been exactly one year since SQL Snippets first appeared on the web as a prototype site containing 33 pages viewed by a handful of visitors in its

  • Columns to Rows: UNPIVOT (11g)

    Updated: 2022-12-14 03:16:25
    SQL Snippets "Columns to Rows" section has been expanded to include a topic on using Oracle 11g's new UNPIVOT clause, which makes all prior techniques for transforming columns into rows now obsolete....

  • Nulls: Nulls and Aggregate Functions

    Updated: 2022-12-14 03:16:24
    A new tutorial has been added to SQL Snippets which demonstrates how aggregate functions deal with null values. Techniques for generating results that ignore nulls and results that include nulls are highlighted....

  • Integer Series Generators: Multiple Integer Series

    Updated: 2022-12-14 03:16:24
    The SQL Snippets "Integer Series Generator" section has been expanded to include new topics covering techniques for generating multiple integer series in a single query. Unlike previous topics which only demonstrated queries that created a single integer series, like 1,2,3,4, the new topics show how a query can generate a series like 1,2 for one row and 1,2,3 for another row in the same query....

  • String to Rows: Hierarchical Methods

    Updated: 2022-12-14 03:16:24
    A new, hierarchical technique for converting strings to rows has been added to the SQL Techniques Tutorials - String to Rows tutorial in SQL Snippets....

  • Integer Series Generators: CONNECT BY LEVEL Method

    Updated: 2022-12-14 03:16:24
    This tutorial has been updated to include a discussion of how hierarchical queries that do not have a CONNECT BY condition with PRIOR behave. A sample query that uses "PRIOR DBMS_RANDOM.VALUE IS NOT NULL" to make the CONNECT BY LEVEL technique conform to documented requirements has also been added....

  • SQL Techniques Tutorials: Pattern Matching Over Rows

    Updated: 2022-12-14 03:16:23
    : SQL Snippets Tutorials for Oracle Developers Custom Search Home A0 A0 SQL Features A0 A0 SQL Techniques A0 A0 Miscellany A0 A0 About A0 A0 Blog A0 A0 Site Map A0 A0 Search A0 A0 Home SQL Techniques Pattern Matching Over Rows A0 String Aggregation A0 Finding Patterns using REGEXP Functions A0 Measures A0 Setup A0 Cleanup A0 A0 Next A0 Read Using SQL Snippets before using any of this site's sample code or techniques on your own . systems Pattern Matching Over Rows This topic was inspired by Tom Kyte's So , in your opinion blog post about a new SQL feature Oracle is considering described at Pattern matching in sequences of rows I'll admit I've never tackled this kind of pattern matching before and I didn't understand the entire paper . It's a pretty dense read . From what I can tell though

  • SQL Techniques Tutorials: Varying IN Lists

    Updated: 2022-12-14 03:16:23
    This new SQL Snippets tutorial explores different approaches for implementing varying IN lists, including ones that use LIKE, MODEL, and integer series generator logic. The solutions will be presented as SQL commands, but the logic can be easily implemented in PL/SQL functions if required. ...

  • Joe's Blog: And Now for Something Completely Different

    Updated: 2022-12-14 03:16:23
    : SQL Snippets Tutorials for Oracle Developers Custom Search Home A0 A0 SQL Features A0 A0 SQL Techniques A0 A0 Miscellany A0 A0 About A0 A0 Blog A0 A0 Site Map A0 A0 Search A0 A0 Home Blog A0 15 Minutes of Fame A0 Happy First Anniversary SQL Snippets A0 And Now for Something Completely Different A0 Google Street View A0 Getting IT Right A0 The Task Spiral A0 The Choice A0 It's Alive A0 Snippets in the Strangest Places A0 The Journey Begins A0 About the Author A0 Next A0 Read Using SQL Snippets before using any of this site's sample code or techniques on your own . systems Joe's Blog And Now for Something Completely Different 2007-06-28 Every once in a while my non-programmer friends give me feedback about my site like the blog posts are good , but when it comes to all that SQL stuff ,

  • Joe's Blog: Google Street View

    Updated: 2022-12-14 03:16:22
    : SQL Snippets Tutorials for Oracle Developers Custom Search Home A0 A0 SQL Features A0 A0 SQL Techniques A0 A0 Miscellany A0 A0 About A0 A0 Blog A0 A0 Site Map A0 A0 Search A0 A0 Home Blog A0 15 Minutes of Fame A0 Happy First Anniversary SQL Snippets A0 And Now for Something Completely Different A0 Google Street View A0 Getting IT Right A0 The Task Spiral A0 The Choice A0 It's Alive A0 Snippets in the Strangest Places A0 The Journey Begins A0 About the Author A0 Next A0 Read Using SQL Snippets before using any of this site's sample code or techniques on your own . systems Joe's Blog Google Street View 2007-06-08 Here's something cool . A new Google Maps feature called Street View is available for some streets . With it you can virtually walk down a road seeing actual street level

  • Adding a Database Project to a Visual Studio Solution

    Updated: 2022-12-13 05:00:00
    In this article, we will look at how to add database code to a Visual Studio solution along with the application code.

  • Understanding SQL Server Schemas

    Updated: 2022-12-12 05:00:00
    Learn about SQL Server schemas in this overview tip that explains what they are, how to create, and creating objects in different schemas.

  • Using sp_prepare and sp_execute to utilize prepared SQL statements

    Updated: 2022-12-12 05:00:00
    Learn about prepared statements in SQL Server, what they are, and how to use them along with the commands sp_prepare and sp_execute.

  • Backing up MySQL Part 8: Zmanda Backups for MySQL & Other Backup Tools

    Updated: 2022-12-09 14:48:20
    In this blog, we're walking you through one of the most popular MySQL backup tools - ZRM - and a couple of others. Have a read!… The post Backing up MySQL Part 8: Zmanda Backups for MySQL & Other Backup Tools appeared first on Simple Talk.

  • Calculate SQL Server Page Counts for Tables, Indexes and Objects

    Updated: 2022-12-09 05:00:00
    Learn about how SQL Server stores data on a data page and the amount of space that is used to store data with this in-depth example.

  • Correlating Stock Index Performance to Economic Indicators with SQL and Excel

    Updated: 2022-12-09 05:00:00
    This tip illustrates how to correlate nominal and real Gross Domestic Product (GDP) with business indicators using T-SQL and Excel.

  • Enforce data integrity rules on your Delta tables using Synapse Mapping Data Flow

    Updated: 2022-12-08 05:00:00
    In this article, we look at ways to enforce data integrity when working with Delta Lake tables when using Azure Synapse Analytics.

  • Date and Time Conversions Using SQL Server

    Updated: 2022-12-08 05:00:00
    In this article we look at several different date and time formats you can use in SQL Server.

  • Learn Snowflake Constraints Primary Key, Unique Key, Foreign Key and Not Null

    Updated: 2022-12-07 05:00:00
    In this article, we look at constraints in Snowflake such as PRIMARY KEY, UNIQUE KEY, FOREIGN KEY, and NOT NULL and how they are enforced in Snowflake.

  • Comparing Power BI vs Tableau as Data Visualization Tools

    Updated: 2022-12-07 05:00:00
    In this article, we do a comparison of Power BI and Tableau, and which tool may be a better choice for your report and dashboard development.

  • Filtering and Aggregating Hive Tables with Spark SQL

    Updated: 2022-12-06 05:00:00
    Learn how to use the Apache Spark ecosystem to filter and/or aggregate data stored in hive tables.

  • Efficient Cloud Management Considerations

    Updated: 2022-12-05 05:00:00
    If you want to use cloud resources efficiently, learn how to make sure you fully address five main areas of cloud management: costs, regulations, resources, identity, and deployment automation.

  • Configure Auto-Failover Group for Azure SQL Database and Azure SQL Managed Instances for SQL Server

    Updated: 2022-12-05 05:00:00
    This tip will show how to configure auto-failover groups for Azure SQL Database and Azure SQL Managed Instances for SQL Server.

  • Dealing with the Bits of a Binary Value in SQL Server

    Updated: 2022-12-04 21:00:14
    In this article, I want to talk about a topic that you may never need. The only time I have really had need to look at the bits in a byte pattern. In (what is now) ancient versions of SQL Server didn't have such self-describing columns like in its metadata objects like it does now.… The post Dealing with the Bits of a Binary Value in SQL Server appeared first on Simple Talk.

Current Feed Items | Previous Months Items

Nov 2022